home *** CD-ROM | disk | FTP | other *** search
Borland Project Group | 1998-07-08 | 968 b | 33 lines |
- #------------------------------------------------------------------------------
- VERSION = BWS.01
- #------------------------------------------------------------------------------
- !ifndef ROOT
- ROOT = $(MAKEDIR)\..
- !endif
- #------------------------------------------------------------------------------
- MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
- DCC = $(ROOT)\bin\dcc32.exe $**
- BRCC = $(ROOT)\bin\brcc32.exe $**
- #------------------------------------------------------------------------------
- PROJECTS = StopKey1.exe StopKey2.exe StopKey3.exe StopKey4.exe StopKey5.exe
- #------------------------------------------------------------------------------
- default: $(PROJECTS)
- #------------------------------------------------------------------------------
-
- StopKey1.exe: StopKey1.dpr
- $(DCC)
-
- StopKey2.exe: StopKey2.dpr
- $(DCC)
-
- StopKey4.exe: StopKey4.dpr
- $(DCC)
-
- StopKey3.exe: StopKey3.dpr
- $(DCC)
-
- StopKey5.exe: StopKey5.dpr
- $(DCC)
-
-
-